home *** CD-ROM | disk | FTP | other *** search
/ See the World by Train (UK Edition) / See the World by Train - Disc 1.iso / SWT4A16.INI < prev    next >
INI File  |  1996-08-22  |  13KB  |  296 lines

  1.  
  2. ; --------------------------------------------------------------------
  3. ;       Template DIRECTOR.INI file for Director 5.0 for Windows.
  4. ; --------------------------------------------------------------------
  5.  
  6. ; All of the settings shown here are commented-out in the original version 
  7. ; of the file.  To change a setting, you must remove the comment 
  8. ; character (";") at the beginning of the setting's line.
  9.  
  10. ; The values shown for each setting in the original file are Director's 
  11. ; internal defaults.  The default value for a setting is used when it 
  12. ; isn't explictly set in the .INI file or when no .INI file exists.  
  13. ; Since these defaults are already stored internally in the Director 
  14. ; application and projectors, it is *not* necessary to distribute this 
  15. ; file with your movie unless you change one or more of the settings.
  16.  
  17. ; For use with projectors, you must name your .INI file "<ProjectorName>.INI"
  18. ; rather than "DIRECTOR.INI" and place the file in the same directory as
  19. ; your projector executable. 
  20.  
  21.  
  22. [Memory]
  23. ExtraMemory=10240
  24. ; Amount of kBytes over and above physical memory for use by a projector.
  25.  
  26. ;SwapFileMeg=0
  27. ; Amount of megabytes of SwapFile space to enable during authoring.
  28. ; Default is to allow swapfile space of up to 1/2 of the available 
  29. ; physical RAM.
  30.  
  31.  
  32.  
  33. [Graphics]
  34. ;Wing=1
  35. ; 0: Do not use WinG graphics accelerator.
  36. ; 1: Use WinG graphics accelerator software. This requires
  37. ;    certain system files to be installed. Projector size and memory 
  38. ;    usage may increase. See the documentation for details.       
  39.  
  40.  
  41.  
  42. [Palette]
  43. ;Animation=1
  44. ; 1: allows director to take control of the palette for fast palette effects
  45. ;    and transitions.
  46. ; 0: prevents director from taking control of the palette so other apps,
  47. ;    wallpaper etc. look better but palette effects and transitions will
  48. ;    be slower.
  49.  
  50.  
  51.  
  52. ; Global Sound Settings ------------------------------------------------
  53.  
  54. [Sound]
  55. ; Settings in the [Sound] section apply to all sound cards.
  56.  
  57. ;SpoolBufferAlloc=0 
  58. ; When to allocate spool buffers
  59. ; 0 means allocate/deallocate dynamically, when sound starts/stops.
  60. ; 1 means allocate spool once at startup and keep for entire session.
  61.  
  62. ;LowSpoolBufferMs=2500
  63. ; Length of one 8bit spool buffer, in milliseconds.
  64.  
  65. ;HighSpoolBufferMs=1500
  66. ; Length of one 16-bit spool buffer, in milliseconds.
  67.  
  68. ;SpoolBufferCount=2
  69. ; Number of spool buffers to use. Must range from 2 to 10.
  70.  
  71. ;MixMaxChannels=4
  72. ; Maximum number of channels supported by the sound mixer. The actual
  73. ; number you can mix depends on the processing power of your computer.
  74. ; Must range from 1 to 8.
  75.  
  76. ;MixWaveDevice=0 
  77. ; DeviceID of waveOut device to use for playing.
  78. ; Must range from 0 to (# of devices - 1).
  79.  
  80. ;SoundLevel0=0                  ; waveOut volume of lingo soundLevel = 0
  81. ;SoundLevel1=24770              ; waveOut volume of lingo soundLevel = 1
  82. ;SoundLevel2=35030              ; waveOut volume of lingo soundLevel = 2
  83. ;SoundLevel3=42903              ; waveOut volume of lingo soundLevel = 3
  84. ;SoundLevel4=49540              ; waveOut volume of lingo soundLevel = 4
  85. ;SoundLevel5=55388              ; waveOut volume of lingo soundLevel = 5
  86. ;SoundLevel6=60674              ; waveOut volume of lingo soundLevel = 6
  87. ;SoundLevel7=65535              ; waveOut volume of lingo soundLevel = 7
  88.  
  89. ;MixMaxFidelity=99
  90. ; Sets a limit on the fidelity of sound output. For best performance, use
  91. ; the default setting of 99 (switch on-the-fly), or choose the lowest value
  92. ; possible of the three fixed sound formats (0, 1, 2):
  93. ;  0  = 22.05k samples/sec, 8-bit, mono
  94. ;  1  = 22.05k samples/sec, 8-bit, stereo
  95. ;  2  = 44.1k samples/sec, 16-bit, stereo
  96. ;  99 = Switch formats on-the-fly.  The first sound in a run of overlapping
  97. ;       sounds determines the format for that run.  The format used is the
  98. ;       lowest of the three output formats (0,1,2 above) which is as close
  99. ;       as possible in fidelity to the sound to be played, while still being
  100. ;       supported by the installed sound card. 
  101.  
  102. ; Default Sound Settings -----------------------------------------------
  103.  
  104. [Low Mono Default Sound]
  105. ; Settings in the [Low Mono Default Sound] section apply when the target
  106. ; output format is 22K, 8-bit, mono.  The target output format depends
  107. ; on the capabilities of the sound card as well as the setting of
  108. ; MixMaxFidelity.   These settings are used when the installed sound card
  109. ; is not known to Director and is not specified explictly in the
  110. ; the <SoundCardName> sections.  Settings in the <SoundCardName> or
  111. ; Override sections will override these values for specific sound cards,
  112. ; or for all sound cards, respectively.
  113.  
  114. ;MixBufferMs=200
  115. ; Length of each mixing buffer, in milliseconds.
  116.  
  117. ;MixBufferBytes=0
  118. ; Length of each mixing buffer, in bytes.  Setting this value to non-0,
  119. ; along with setting MixBufferMs=0, lets you specify the buffer size in 
  120. ; bytes rather than milliseconds.
  121.  
  122. ;MixBufferCount=4
  123. ; Number of mixing buffers to use. Must range from 2 to 16.
  124.  
  125. ;MixServiceMode=0
  126. ; 0 means use timer interrupts to drive mixer. Interrupt settings will be
  127. ;         applied from MixIntPeriodMs and MixIntResolutionMs.
  128. ; 1 means use polling to drive mixer. This may cause sound to drop out when
  129. ;         CPU cycles are being hogged by other tasks, disk accesses, etc.
  130. ; 2 means use the waveOut buffer-completion callback to drive mixer.  If
  131. ;         this mode is set, it is best to use MixBufferBytes to specify a
  132. ;         fixed buffer size which is a multiple of 1024.  This mode is not 
  133. ;         supported by all sound cards.
  134.  
  135. ;MixIntPeriodMs=200
  136. ; Interrupt period, in milliseconds. Only used when MixServiceMode is zero.
  137.  
  138. ;MixIntResolutionMs=50
  139. ; Interrupt resolution, in milliseconds. Only used when MixServiceMode is zero.
  140.  
  141.  
  142. [Low Default Sound]
  143. ; Settings in the [Low Default Sound] section apply when the target
  144. ; output format is 22K, 8-bit, stereo.  The target output format depends
  145. ; on the capabilities of the sound card as well as the setting of
  146. ; MixMaxFidelity.   These settings are used when the installed sound card
  147. ; is not known to Director and is not specified explictly in the
  148. ; the <SoundCardName> sections.  Settings in the <SoundCardName> or
  149. ; Override sections will override these values for specific sound cards,
  150. ; or for all sound cards, respectively.
  151.  
  152. ;MixBufferMs=200
  153. ;MixBufferBytes=0
  154. ;MixBufferCount=4
  155. ;MixServiceMode=0
  156. ;MixIntPeriodMs=200
  157. ;MixIntResolutionMs=50
  158.  
  159.  
  160. [High Default Sound]
  161. ; Settings in the [High Default Sound] section apply when the target
  162. ; output format is 44K, 16-bit, stereo.  The target output format depends
  163. ; on the capabilities of the sound card as well as the setting of
  164. ; MixMaxFidelity.   These settings are used when the installed sound card
  165. ; is not known to Director and is not specified explictly in the
  166. ; the <SoundCardName> sections.  Settings in the <SoundCardName> or
  167. ; Override sections will override these values for specific sound cards,
  168. ; or for all sound cards, respectively.
  169. ;MixBufferMs=200
  170. ;MixBufferBytes=0
  171. ;MixBufferCount=4
  172. ;MixServiceMode=0
  173. ;MixIntPeriodMs=200
  174. ;MixIntResolutionMs=50
  175.  
  176.  
  177.  
  178. ; Sound Card-Specific Settings -----------------------------------------
  179.  
  180. ;[Low Mono <SoundCardName>]
  181. ; Settings in this section apply when the target output format is
  182. ; 22K 8-bit mono, and you're using a particular sound card.  The target
  183. ; output format depends on the capabilities of the sound card, as well
  184. ; as the setting of MixMaxFidelity.  You can have any number of these 
  185. ; sections. Replace "<SoundCardName>" (including the angled brackets) 
  186. ; with the actual name of the sound card you want to set defaults for.  
  187. ; To find the name of your card, launch the Sound Mapper application, 
  188. ; and look in the Playback field.  Director maintains a built-in table
  189. ; of settings for many popular sound cards.  Settings in this section take 
  190. ; precedence over Director's built-in settings.
  191. ;MixBufferMs=200
  192. ;MixBufferCount=4
  193. ;MixBufferBytes=0
  194. ;MixServiceMode=0
  195. ;MixIntPeriodMs=200
  196. ;MixIntResolutionMs=50
  197.  
  198.  
  199. [Low <SoundCardName>]
  200. ; Settings in this section apply when the target output format is
  201. ; 22K 8-bit stereo, and you're using a particular sound card.  The target
  202. ; output format depends on the capabilities of the sound card, as well
  203. ; as the setting of MixMaxFidelity.  You can have any number of these 
  204. ; sections. Replace "<SoundCardName>" (including the angled brackets) 
  205. ; with the actual name of the sound card you want to set defaults for.  
  206. ; To find the name of your card, launch the Sound Mapper application, 
  207. ; and look in the Playback field.  Director maintains a built-in table
  208. ; of settings for many popular sound cards.  Settings in this section take 
  209. ; precedence over Director's built-in settings.
  210. ;MixBufferMs=200
  211. ;MixBufferCount=4
  212. ;MixBufferBytes=0
  213. ;MixServiceMode=0
  214. ;MixIntPeriodMs=200
  215. ;MixIntResolutionMs=50
  216.  
  217.  
  218. ;[High <SoundCardName>]
  219. ; Settings in this section apply when the target output format is
  220. ; 44K 16-bit stereo, and you're using a particular sound card.  The target
  221. ; output format depends on the capabilities of the sound card, as well
  222. ; as the setting of MixMaxFidelity.  You can have any number of these 
  223. ; sections. Replace "<SoundCardName>" (including the angled brackets) 
  224. ; with the actual name of the sound card you want to set defaults for.  
  225. ; To find the name of your card, launch the Sound Mapper application, 
  226. ; and look in the Playback field.  Director maintains a built-in table
  227. ; of settings for many popular sound cards.  Settings in this section take 
  228. ; precedence over Director's built-in settings.
  229. ;MixBufferMs=200
  230. ;MixBufferBytes=0
  231. ;MixBufferCount=4
  232. ;MixServiceMode=0
  233. ;MixIntPeriodMs=200
  234. ;MixIntResolutionMs=50
  235.  
  236.  
  237.  
  238. ; Sound Override Settings ----------------------------------------------
  239.  
  240. [Low Mono Override]
  241. ; Settings in the [Low Mono Override] apply when the target ouput format
  242. ; is 22K 8-bit mono.  The target output format depends on the capabilities
  243. ; of the sound card, as well as the setting of MixMaxFidelity.
  244. ; These settings will override Director's internal settings, any defaults
  245. ; specified in the Default Sound sections, as well as settings for specific 
  246. ; cards.  Change these settings only if you want to force Director to use
  247. ; certain values regardless of the sound card installed in the computer.
  248. ; It is not recommended that you modify these settings for movies which
  249. ; you are going to distribute, as they will override Director's internal
  250. ; settings which are already optimized for various sound cards.
  251. ;MixBufferMs=200
  252. ;MixBufferBytes=0
  253. ;MixBufferCount=4
  254. ;MixServiceMode=0
  255. ;MixIntPeriodMs=200
  256. ;MixIntResolutionMs=50
  257.  
  258. [Low Override]
  259. ; Settings in the [Low Override] apply when the target ouput format
  260. ; is 22K 8-bit stereo.  The target output format depends on the capabilities
  261. ; of the sound card, as well as the setting of MixMaxFidelity.
  262. ; These settings will override Director's internal settings, any defaults
  263. ; specified in the Default Sound sections, as well as settings for specific 
  264. ; cards.  Change these settings only if you want to force Director to use
  265. ; certain values regardless of the sound card installed in the computer.
  266. ; It is not recommended that you modify these settings for movies which
  267. ; you are going to distribute, as they will override Director's internal
  268. ; settings which are already optimized for various sound cards.
  269. ;MixBufferMs=200
  270. ;MixBufferBytes=0
  271. ;MixBufferCount=4
  272. ;MixServiceMode=0
  273. ;MixIntPeriodMs=200
  274. ;MixIntResolutionMs=50
  275.  
  276.  
  277. [High Override]
  278. ; Settings in the [High Override] apply when the target ouput format
  279. ; is 44K 16-bit stereo.  The target output format depends on the capabilities
  280. ; of the sound card, as well as the setting of MixMaxFidelity.
  281. ; These settings will override Director's internal settings, any defaults
  282. ; specified in the Default Sound sections, as well as settings for specific 
  283. ; cards.  Change these settings only if you want to force Director to use
  284. ; certain values regardless of the sound card installed in the computer.
  285. ; It is not recommended that you modify these settings for movies which
  286. ; you are going to distribute, as they will override Director's internal
  287. ; settings which are already optimized for various sound cards.
  288. ;MixBufferMs=200
  289. ;MixBufferBytes=0
  290. ;MixBufferCount=4
  291. ;MixServiceMode=0
  292. ;MixIntPeriodMs=200
  293. ;MixIntResolutionMs=50
  294.  
  295.